home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1998 January: Mac OS SDK / Dev.CD Jan 98 SDK2.toast / Development Kits (Disc 2) / QuickDraw GX / Programming Stuff / Sample Code / Printing Samples / Extensions… / "kabooms" (global data info) ƒ / no kaboom ƒ / no kaboom.a < prev    next >
Encoding:
Text File  |  1996-03-20  |  542 b   |  29 lines  |  [TEXT/MPS ]

  1. ;
  2. ;    File: no kaboom.a
  3. ;    
  4. ;    Assembly code (jump table) for a simple printing extension.
  5. ;    
  6. ;    Dave Hersey
  7. ;    Apple Developer Technical Support
  8. ;
  9. ;    2/01/93    - dmh - Created.
  10. ;    4/26/93    - dmh - Updated to use recommended approach,
  11. ;                    and work around b1 shutdown bug.
  12. ;    9/07/93    - dmh - Updated for b2.
  13. ;  12/18/93    - dmh - Updated for b3.
  14. ;
  15.  
  16.     EXPORT    EntryPoint                    ; Our main entry point.
  17.     IMPORT    MyStartJob
  18.     IMPORT    MyFinishJob
  19.     
  20. EntryPoint    PROC
  21.     
  22.             DC.L    0                    ; Reserved for owner count.
  23.     
  24.             JMP        MyStartJob
  25.             JMP        MyFinishJob
  26.  
  27.             ENDPROC
  28.     END
  29.